aboutsummaryrefslogtreecommitdiff
path: root/front-end/src/views/[...all].vue
diff options
context:
space:
mode:
Diffstat (limited to 'front-end/src/views/[...all].vue')
-rw-r--r--front-end/src/views/[...all].vue24
1 files changed, 24 insertions, 0 deletions
diff --git a/front-end/src/views/[...all].vue b/front-end/src/views/[...all].vue
new file mode 100644
index 0000000..1f439fc
--- /dev/null
+++ b/front-end/src/views/[...all].vue
@@ -0,0 +1,24 @@
+<template>
+ <div id="default-template" class="flex px-4 py-24 app-component-entry">
+ <div class="mx-auto">
+ <h2 class="text-center">404 - Resource not found</h2>
+ <p>
+ The resource you are looking for could not be found on the server. Please check the URL and try again,
+ or go back <router-link class="link" to="/">home</router-link>
+ </p>
+ </div>
+ </div>
+</template>
+
+<script setup lang="ts">
+
+import { useTitle } from '@vnuge/vnlib.browser'
+useTitle('404 - Resource not found')
+
+</script>
+
+<style lang="scss">
+#default-template{
+
+}
+</style> \ No newline at end of file